home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1843 / 1843.xpi / skin / classic / dom.css < prev    next >
Cascading Style Sheet File  |  2009-10-16  |  4KB  |  181 lines

  1. /* See license.txt for terms of usage */
  2.  
  3. .panelNode-dom {
  4.     overflow-x: hidden !important;
  5. }
  6.  
  7. .domTable {
  8.     width: 100%;
  9. }
  10.  
  11. .memberLabelCell {
  12.     padding: 2px 0 2px 0px;
  13.     vertical-align: top;
  14. }
  15.  
  16. .memberValueCell {
  17.     padding: 1px 0 1px 5px;
  18.     display: block;
  19.     overflow: hidden;
  20. }
  21.  
  22. .memberLabel {
  23.     cursor: default;
  24.     -moz-user-select:  none;
  25.     overflow: hidden;
  26.     /*position: absolute;*/
  27.     padding-left: 18px;
  28.     /*max-width: 30%;*/
  29.     white-space: nowrap;
  30.     background-color: #FFFFFF;
  31. }
  32.  
  33. .memberLabelPrefix {
  34.     color: gray;
  35. }
  36.  
  37. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  38. /* Breakpoints */
  39.  
  40. /* In order to set memberRowHeader's height to 100%, memberRow and
  41.  * memberHeaderCell (parents) has to also be set to height: 100%,
  42.  * otherwise it wouldn't work */
  43. .memberHeaderCell {
  44.     height: 100%;
  45. }
  46.  
  47. .memberRow {
  48.     height: 100%;
  49. }
  50.  
  51. .memberRowHeader {
  52.     cursor: pointer;
  53.     display: none;
  54.     height: 100%;
  55. }
  56.  
  57. /* Show breakpoints bar only in the DOM panel (and DOM side panel) so far */
  58. .panelNode-dom .memberRowHeader,
  59. .panelNode-domSide .memberRowHeader {
  60.     display: block;
  61. }
  62.  
  63. /* Display brekpoint disc */
  64. .memberRow .memberRowHeader {
  65.     background-position: 5px 2px;
  66. }
  67.  
  68. .memberRow[breakpoint="true"] .memberRowHeader {
  69.     background-image: url(chrome://firebug/skin/breakpoint.png);
  70. }
  71.  
  72. .memberRow[breakpoint="true"][disabledBreakpoint="true"] .memberRowHeader {
  73.     background-image: url(chrome://firebug/skin/breakpointDisabled.png);
  74. }
  75.  
  76. .memberRow[breakable="true"]:hover .memberRowHeader {
  77.     background-color: #F6F6F6;
  78. }
  79.  
  80. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  81.  
  82. .memberRow.hasChildren > .memberLabelCell > .memberLabel:hover {
  83.     cursor: pointer;
  84.     color: blue;
  85.     text-decoration: underline;
  86. }
  87.  
  88. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  89.  
  90. .userLabel {
  91.     color: #000000;
  92.     font-weight: bold;
  93. }
  94.  
  95. .userClassLabel {
  96.     color: #E90000;
  97.     font-weight: bold;
  98. }
  99.  
  100. .userFunctionLabel {
  101.     color: #025E2A;
  102.     font-weight: bold;
  103. }
  104.  
  105. .domLabel {
  106.     color: #000000;
  107. }
  108.  
  109. .domFunctionLabel {
  110.     color: #025E2A;
  111. }
  112.  
  113. .ordinalLabel {
  114.     color: SlateBlue;
  115.     font-weight: bold;
  116. }
  117.  
  118. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  119.  
  120. .scopesRow {
  121.     padding: 2px 18px;
  122.     background-color: LightYellow;
  123.     border-bottom: 5px solid #BEBEBE;
  124.     color: #666666;
  125. }
  126. .scopesLabel {
  127.     background-color:  LightYellow;
  128. }
  129.  
  130. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  131.  
  132. .watchEditCell {
  133.     padding: 2px 18px;
  134.     background-color: LightYellow;
  135.     border-bottom: 1px solid #BEBEBE;
  136.     color: #666666;
  137. }
  138.  
  139. .editor-watchNewRow,
  140. .editor-memberRow {
  141.     font-family: Monaco, monospace !important;
  142. }
  143.  
  144. .editor-memberRow {
  145.     padding: 1px 0 !important;
  146. }
  147.  
  148. .editor-watchRow {
  149.     padding-bottom: 0 !important;
  150. }
  151.  
  152. .watchRow > .memberLabelCell {
  153.     font-family: Monaco, monospace;
  154.     padding-top: 1px;
  155.     padding-bottom: 1px;
  156. }
  157.  
  158. .watchRow > .memberLabelCell > .memberLabel {
  159.     background-color: transparent;
  160. }
  161.  
  162. .watchRow > .memberValueCell {
  163.     padding-top: 2px;
  164.     padding-bottom: 2px;
  165. }
  166.  
  167. .watchRow > .memberLabelCell,
  168. .watchRow > .memberValueCell {
  169.     background-color: #F5F5F5;
  170.     border-bottom: 1px solid #BEBEBE;
  171. }
  172.  
  173. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  174.  
  175. .watchToolbox {
  176.     z-index: 2147483647;
  177.     position: absolute;
  178.     right: 0;
  179.     padding: 1px 2px;
  180. }
  181.